body {
    font-family: "IBM Plex Serif", serif;
    /*'Inter', sans-serif;*/
}
.container {
    text-align: center;
    
    margin-bottom: 2px;
}

.container h1 {
    font-size: 24px;
    margin-bottom: 10px;
}
.container p {
    font-size: 16px;
    margin-bottom: 20px;
}

/*cuadra de imagenes*/
.foto-container {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  height: auto;
  text-align: center;
  justify-content: center;
}

.foto {
  width: 200px;
  height: 200px;
  margin: 10px;
  text-align: center;
  justify-content: center;
}

.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  border-radius: 2rem;
}

.video-container {
  width: 80%;
  margin-left: 10%;
  margin-right: 10%;
  text-align: center;
  height: auto;
}

.video-container video {
  height: 80vh;
  width: 80%;
  object-fit: contain;
  margin-top: 0;
  
}



  /* Estilos para el modal */
.modal {
    display: none; 
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5); 
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    max-width: 600px;
    padding: 20px;
    position: relative;
  }
  
  .close {
    color: #aaa;
    cursor: pointer;
    font-size: 28px;
    position: absolute;
    right: 20px;
    top: 20px;
  }

  
  @media (max-width: 700px) {
    .foto-container {
        width: 95%;
        margin-left: 2.5%;
        margin-right: 2.5%;    
      }
      .foto {
        width: 120px; 
        height: 120px;
        margin: 2px;
        
      }
  }